:root {
    --bg: #FAF8F7;
    --bg-alt: #F2EDEA;
    --white: #FFFFFF;
    --accent: #E94E09;
    --accent-hover: #C93D00;
    --accent-50: #FFF3EE;
    --accent-800: #8A2800;
    --accent-light: rgba(233, 78, 9, 0.08);
    --accent-medium: rgba(233, 78, 9, 0.15);
    --text: #1A1A1A;
    --text-secondary: #5C5C5C;
    --text-tertiary: #9A9A9A;
    --text-on-accent: #FFFFFF;
    --success: #198900;
    --success-light: rgba(25, 137, 0, 0.08);
    --danger: #D52B1E;
    --border: rgba(0, 0, 0, 0.06);
    --border-strong: rgba(0, 0, 0, 0.12);
    --cta-green: #198900;
    --cta-green-hover: #147000;
    --cta-orange: #F95108;
    --cta-orange-hover: #FB8552;
    --ring-blue: #1998D5;
    --ring-blue-dark: #0F6FAB;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.08), 0 20px 48px rgba(0, 0, 0, 0.10);
    --shadow-pop: 0 24px 64px rgba(0, 0, 0, 0.18);

    --font-body: 'Outfit', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --font-accent: 'Inter', sans-serif;

    --fs-xs: 0.75rem;
    --fs-sm: 0.8125rem;
    --fs-base: 0.9375rem;
    --fs-md: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-2xl: 1.5rem;
    --fs-3xl: 1.875rem;
    --fs-4xl: 2.25rem;

    --sp-1: 4px;
    --sp-2: 8px;
    --sp-3: 12px;
    --sp-4: 16px;
    --sp-5: 20px;
    --sp-6: 24px;
    --sp-8: 32px;
    --sp-10: 40px;
    --sp-12: 48px;
    --sp-16: 64px;
    --sp-20: 80px;

    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 20px;
    --r-full: 9999px;

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── RESET / BASE ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: 1.65;
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22) 0%, transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.45) 0%, transparent 55%),
        radial-gradient(rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px) 0 0 / 24px 24px,
        linear-gradient(135deg, #122B54 0%, #242424 100%);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font: inherit;
    cursor: pointer;
    border: 0;
    background: transparent;
    color: inherit;
}

input,
textarea {
    font: inherit;
    color: inherit;
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}

.hidden {
    display: none !important;
}

/* ─── LAYOUT UTILITIES ─── */
.container {
    width: 100%;
    max-width: 920px;
    margin-inline: auto;
    padding-inline: var(--sp-6);
}

.hero-container-wrapper {
    padding-top: 20px;
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 4px solid #002F87;
    border-radius: var(--r-xl);
    box-shadow: 0 10px 30px rgba(0, 47, 135, 0.06);
}

/* ─── BUTTONS ─── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: 16px 30px;
    background: linear-gradient(135deg, #002F87 0%, #003DA5 100%);
    color: #FFFFFF;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 0;
    border-radius: 14px;
    border: 0;
    cursor: pointer;
    transition: filter 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
    width: fit-content;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0, 47, 135, 0.3);
}

.btn-primary:hover {
    filter: brightness(1.06);
}

.btn-primary:active {
    transform: translateY(1px);
}

.btn-primary:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: 14px 28px;
    background: transparent;
    color: var(--text);
    font-size: var(--fs-base);
    font-weight: 600;
    border: 1.5px solid var(--border-strong);
    border-radius: 14px;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease;
}

.btn-secondary:hover {
    background: var(--bg-alt);
    border-color: var(--text);
}

/* ─── FORMS ─── */
textarea,
input[type="text"],
input[type="email"] {
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: var(--fs-base);
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-light);
}

textarea::placeholder,
input::placeholder {
    color: var(--text-tertiary);
}

/* ─── NOTICE BAR ─── */
.notice-bar {
    background: #002F87;
    padding: 6px var(--sp-4);
    text-align: center;
    font-family: var(--font-accent);
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.2;
}

.notice-bar i {
    color: rgba(255, 255, 255, 0.85);
    font-size: 11px;
}

.notice-short {
    display: none;
}

/* ─── SITE HEADER ─── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #FFFFFF;
    padding: 14px var(--sp-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 920px;
    margin: 0 auto;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.site-logo {
    width: auto;
    height: 50px;
}

/* ─── LIVE CODE COUNTER ─── */
.live-code-card {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    width: fit-content;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.live-code-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    text-transform: uppercase;
    white-space: nowrap;
}

.live-code-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    margin-left: -4px;
}

.live-code-count {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 15px;
    color: #ffffff;
    background: var(--accent);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: transform 0.3s var(--ease-spring);
}

.live-code-count.bump {
    transform: scale(1.2);
}

.live-code-unit small {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-tertiary);
    letter-spacing: 0.08em;
    margin-top: 2px;
    text-transform: uppercase;
}

/* ─── HERO ─── */
.hero {
    max-width: 860px;
    margin: 0 auto 20px;
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    padding: 0;
}

.hero-header-group {
    grid-column: 2;
    grid-row: 1;
    padding: 32px 32px 0 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-brand-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-bottom: 8px;
}

.hero-eyebrow {
    font-family: var(--font-accent);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 0.08em;
    margin-bottom: 0;
    width: 100%;
    text-align: center;
}

.hero-media {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border);
    padding: 32px 20px;
    position: relative;
    overflow: hidden;
    border-top-left-radius: var(--r-xl);
    border-bottom-left-radius: var(--r-xl);
}

.hero-media::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bghero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(2px);
    z-index: 0;
    transform: scale(1.05);
}



.hero-media-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-badges-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 280px;
    z-index: 2;
}

.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #F0F3F8;
    border: 1px solid rgba(0, 40, 120, 0.08);
    padding: 8px 12px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 40, 120, 0.03);
    transition: transform 0.2s ease;
}

.hero-badge-item:hover {
    transform: translateY(-1px);
}

.hero-badge-icon {
    font-size: 14px;
    color: #002F87;
    background: rgba(0, 47, 135, 0.08);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-badge-text {
    font-size: 12px;
    font-weight: 700;
    color: #0D1B2A;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.hero-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
    animation: float 3.5s ease-in-out infinite;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.10));
}

.hero-body {
    grid-column: 2;
    grid-row: 2;
    padding: 16px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    width: 100%;
}

.live-scarcity-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 0, 0, 0.06);
    border: 1px solid rgba(230, 0, 0, 0.2);
    padding: 6px 12px;
    border-radius: 99px;
    font-size: 12.5px;
    font-weight: 700;
    color: #e60000;
    margin-bottom: 12px;
    align-self: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.live-scarcity-pill.pulse-highlight {
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(230, 0, 0, 0.25);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #e60000;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.live-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #e60000;
    border-radius: 50%;
    animation: livePulse 1.6s infinite ease-out;
}

@keyframes livePulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}


.hero-title {
    font-family: var(--font-body);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text);
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    width: 100%;
    text-align: center;
}

.hero-discount-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    background: #002F87;
    color: #fff;
    font-family: var(--font-body);
    font-size: clamp(13px, 3vw, 18px);
    font-weight: 900;
    letter-spacing: 0.01em;
    padding: 7px 16px;
    border: 2px dashed #E5EAF4;
    border-radius: 8px;
    line-height: 1;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.hero-product-name {
    font-family: var(--font-body);
    font-size: clamp(14px, 2.2vw, 28px);
    font-weight: 800;
    display: inline-block;
    color: var(--text);
    letter-spacing: 0.01em;
    padding-bottom: 2px;
}

.hero-desc {
    font-size: 15px;
    line-height: 1.45;
    color: var(--text-secondary);
    margin-bottom: 6px;
    text-align: center;
}

.hero-desc b {
    font-weight: 800;
}

.hero-desc--secondary {
    font-size: 15px;
    line-height: 1.45;
    color: var(--text-secondary);
    text-align: center;
}

.hero-cta-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    width: 100%;
    margin-top: 14px;
}

.btn-primary--hero {
    width: 80%;
    min-width: 270px;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 14px 28px;
    border-radius: 14px;
}

.btn-primary--hero::after {
    content: '';
    position: absolute;
    top: -80%;
    left: -200%;
    width: 150%;
    height: 500%;
    opacity: 0;
    transform: rotate(-10deg);
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.13) 77%,
            rgba(255, 255, 255, 0.5) 92%,
            rgba(255, 255, 255, 1) 92%,
            rgba(255, 255, 255, 0) 100%);
    animation: btn-shine 3s ease-in-out infinite;
}

#start-survey-btn {
    background: linear-gradient(135deg, #002F87 0%, #003DA5 100%) !important;
    color: #FFFFFF !important;
    border: 0 !important;
    box-shadow: 0 4px 14px rgba(0, 47, 135, 0.35) !important;
    font-weight: 800;
}

#start-survey-btn:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.hero-reassurance-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-reassurance {
    font-size: var(--fs-xs);
    color: var(--text-tertiary);
}

.hero-trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
    margin-top: 16px;
    width: 100%;
}

.trust-badge {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 8px;
    flex: none;
    min-width: 0;
}

.trust-badge-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    object-fit: contain;
}

.trust-badge-text {
    font-size: 9.5px;
    font-weight: 700;
    line-height: 1.3;
    color: #0D222D;
    text-transform: uppercase;
}

/* ─── HERO RESPONSIVE ─── */
@media (max-width: 700px) {
    .hero {
        padding: 24px 20px 28px;
    }

    .hero-media {
        margin-bottom: 16px;
        padding: 8px;
    }

    .hero-img {
        max-width: 180px;
    }

    .btn-primary--hero {
        width: 100%;
    }

    .hero-trust-badges {
        max-width: 100%;
        margin-top: 16px;
        gap: 8px 10px;
    }

    .trust-badge {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 6px;
    }
}

/* ─── SURVEY ─── */
.survey-section {
    padding: 20px 0;
}

.survey-card {
    max-width: 920px;
    margin-inline: auto;
    padding: var(--sp-8);
    background: #FFFFFF;
    border-radius: var(--r-xl);
}

.survey-inner {
    width: 100%;
}

.survey-progress {
    margin-bottom: var(--sp-10);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.q-counter {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--text);
}

.p-counter {
    font-size: var(--fs-xs);
    color: var(--text-tertiary);
    font-weight: 500;
}

.progress-label {
    color: var(--success);
    font-weight: 600;
    font-size: var(--fs-xs);
}

.progress-track {
    height: 5px;
    background: var(--bg-alt);
    border-radius: 999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #002F87;
    border-radius: 999px;
    transition: width 400ms var(--ease-out);
}

.question-text {
    font-family: var(--font-accent);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: var(--sp-6);
}

.answers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Answer Buttons — blue with white text, changes to white with blue border on hover/selected */
.answer-btn {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding: 16px var(--sp-5);
    background: #002F87;
    color: #FFFFFF;
    border: 2px solid #002F87;
    border-radius: 14px;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
    text-align: left;
    width: 100%;
    opacity: 0;
    transform: translateY(16px);
    animation: reveal-up 0.24s var(--ease-out) both;
}

.answers-grid .answer-btn:nth-child(1) {
    animation-delay: 0s;
}

.answers-grid .answer-btn:nth-child(2) {
    animation-delay: 0.05s;
}

.answers-grid .answer-btn:nth-child(3) {
    animation-delay: 0.10s;
}

.answers-grid .answer-btn:nth-child(4) {
    animation-delay: 0.15s;
}

.answer-btn:hover,
.answer-btn:focus-visible {
    background: #FFFFFF !important;
    color: #002F87 !important;
    border-color: #002F87 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 47, 135, 0.2);
}

.answer-btn--selected {
    background: #FFFFFF !important;
    color: #002F87 !important;
    border-color: #002F87 !important;
    box-shadow: 0 4px 14px rgba(0, 47, 135, 0.2) !important;
}

.answer-btn-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #FFFFFF;
    color: #002F87;
    font-size: var(--fs-xs);
    font-weight: 700;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.answer-btn:hover .answer-btn-letter {
    background: #002F87;
    color: #FFFFFF;
}

.answer-btn--selected .answer-btn-letter {
    background: #002F87 !important;
    color: #FFFFFF !important;
}

.answer-btn-text {
    font-size: var(--fs-sm);
    color: #FFFFFF;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.18s ease;
}

.answer-btn:hover .answer-btn-text {
    color: #002F87;
}

.answer-btn--selected .answer-btn-text {
    color: #002F87 !important;
}

.answer-btn:active {
    transform: scale(0.97) !important;
}

.survey-inner {
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.survey-slide-out {
    transform: translateX(-40px);
    opacity: 0;
}

.survey-slide-in {
    animation: surveySlideIn 0.25s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes surveySlideIn {
    0% {
        transform: translateX(40px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.survey-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: var(--sp-10);
}

/* ─── VERIFICATION ─── */
.verification-section {
    padding: 20px 0;
}

.verif-inner {
    max-width: 560px;
    margin: 0 auto;
    padding: 48px var(--sp-6) 40px;
    text-align: center;
    transition: background 0.4s ease;
    background: #fff;
    border: 1px solid var(--border);
    border-top: 4px solid #002F87;
    border-radius: var(--r-xl);
    box-shadow: 0 10px 30px rgba(0, 47, 135, 0.06);
}

/* ─── VERIFICATION ICON RING ─── */
.verif-icon-ring {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--accent-light);
    border: 3px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 30px;
    color: var(--accent);
    animation: verif-ring-pulse 1.6s ease-in-out infinite;
    transition: background 0.5s ease, border-color 0.5s ease, color 0.5s ease;
}

.verif-icon-ring--success {
    background: rgba(25, 137, 0, 0.08);
    border-color: #198900;
    color: #198900;
    animation: verif-ring-pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes verif-ring-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 47, 135, 0.15);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(0, 47, 135, 0);
    }
}

@keyframes verif-ring-pop {
    from {
        transform: scale(0.7);
        opacity: 0.5;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.verif-title {
    font-family: var(--font-accent);
    font-size: clamp(20px, 3.2vw, 26px);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.verif-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 0 28px;
    transition: color 0.3s ease;
}

.verif-copy-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    width: 100%;
    margin: 24px auto;
}

.verif-step-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: transparent;
    border-radius: 10px;
    opacity: 0.38;
    transition: all 0.3s ease;
    text-align: left;
    border: 1.5px solid transparent;
}

.verif-step-item.active {
    opacity: 1;
    background: rgba(0, 47, 135, 0.06);
    border-color: rgba(0, 47, 135, 0.2);
}

.verif-step-item.done {
    opacity: 1;
    background: rgba(25, 137, 0, 0.06);
    border-color: rgba(25, 137, 0, 0.2);
}

.verif-step-icon {
    font-size: 16px;
    color: #bbb;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.verif-step-item.active .verif-step-icon {
    color: var(--accent);
}

.verif-step-item.done .verif-step-icon {
    color: #198900;
}

.verif-step-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.3;
}

.verif-step-item.active .verif-step-text {
    color: var(--text);
}

.verif-step-item.done .verif-step-text {
    color: #198900;
}

.verif-step-label {
    font-size: var(--fs-lg);
    font-weight: 300;
    color: var(--text);
    margin-bottom: 0;
    min-height: 24px;
}

.verif-step-done {
    font-size: var(--fs-md);
    font-weight: 800;
    color: var(--success);
    min-height: 22px;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.verif-step-done.done {
    opacity: 1;
}

.verif-available {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 6px var(--sp-4);
    background: var(--success-light);
    color: var(--success);
    font-size: var(--fs-sm);
    font-weight: 600;
    border-radius: var(--r-full);
}

.verif-bar-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.verif-bar {
    flex: 1;
    height: 8px;
    background: var(--bg-alt);
    border-radius: 99px;
    overflow: hidden;
}

.verif-bar-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 99px;
    width: var(--pct, 0%);
    transition: width 0.4s ease;
}

.verif-percent {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    min-width: 36px;
    text-align: right;
}

.flash-green {
    animation: flash-success 0.4s var(--ease) forwards;
}

.pop-check-icon {
    animation: popCheck 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popCheck {
    0% {
        transform: scale(0.6);
        color: var(--accent);
    }

    50% {
        transform: scale(1.35);
        color: #10B981;
    }

    100% {
        transform: scale(1);
        color: #10B981;
    }
}

/* ─── RESULTS ─── */
.results-section {
    padding: 20px 0 0;
}

@media (min-width: 769px) {
    .results-section .container {
        padding-inline: 0;
    }
}

.result-badge-wrap {
    text-align: center;
    margin-bottom: var(--sp-8);
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    padding: var(--sp-6);
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F3F8 100%);
    border: 1px solid var(--border);
    border-top: 4px solid #002F87;
    border-radius: var(--r-xl);
    box-shadow: 0 10px 30px rgba(0, 47, 135, 0.06);
}

.result-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: 8px var(--sp-5);
    background: var(--success-light);
    color: var(--success);
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--r-full);
}

.result-product {
    max-width: 920px;
    margin: 0 auto;
    padding-inline: 0;
    padding-bottom: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-subtitle {
    font-size: var(--fs-base);
    color: var(--text-secondary);
    line-height: 1.65;
    margin-top: var(--sp-4);
    max-width: 690px;
    margin-inline: auto;
    padding-inline: var(--sp-6);
}

.result-subtitle-note {
    display: block;
    margin-top: var(--sp-2);
    font-size: var(--fs-sm);
    color: var(--text-tertiary);
    font-style: italic;
}

.result-card {
    background: var(--white);
    border: 2px solid #002F87;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 47, 135, 0.08);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: stretch;
}

.result-card-img-col {
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px 16px 20px 16px;
    overflow: hidden;
    border-right: 1px solid var(--border);
}

.result-card-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.result-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 0px 22px;
}

.result-meta-tag {
    font-size: 11px;
    font-weight: 800;
    color: #4A5568;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.result-meta-tag .flag-icon {
    font-size: 14px;
}

.result-title {
    font-family: var(--font-accent);
    font-size: clamp(20px, 2.8vw, 22px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #0D1B2A;
    margin: 0;
}

.result-title-divider {
    width: 60px;
    height: 4px;
    background: #002F87;
    border-radius: 2px;
    margin: 6px 0;
}

.result-social-stock-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 2px 0;
    flex-wrap: wrap;
}

.result-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.result-rating .stars {
    color: #FFB020;
    font-size: 14px;
    letter-spacing: -0.5px;
}

.result-rating .rating-val {
    font-size: 12px;
    font-weight: 700;
    color: #2D3748;
}

.result-stock-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 700;
    color: #1B5E20;
    background: #E8F5E9;
    padding: 3px 10px;
    border-radius: 99px;
}

.result-stock-status .stock-dot {
    width: 7px;
    height: 7px;
    background-color: #2E7D32;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 4px rgba(46, 125, 50, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 125, 50, 0);
    }
}

.result-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.result-claim-guarantee {
    font-size: 11px;
    color: #718096;
    text-align: center;
    margin-top: 4px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.result-pricing {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 6px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.result-pricing-left {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.result-label {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    display: inline-block;
}

.result-your-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.result-your-price-label {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    font-weight: 500;
}

.result-code-pill {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2px;
    background: rgba(230, 0, 0, 0.08);
    color: #e60000;
    font-size: var(--fs-xs);
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 10px;
    border: 1.5px solid #e60000;
    width: fit-content;
    line-height: 1.4;
}

.result-code-pill-icon {
    font-size: 10px;
    font-weight: 900;
    background: #198900;
    color: #fff;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-old-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.old-price-label {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
}

.old-price-val {
    font-size: var(--fs-base);
    color: #e60000;
    text-decoration: line-through;
    font-weight: 600;
}

.discount-badge-blink {
    font-size: var(--fs-xs);
    font-weight: 900;
    color: #FFFFFF;
    background: #002F87;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* ─── TIER DISCOUNT TABLE ─── */
.result-tier-table {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.tier-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 9px 14px;
    font-size: var(--fs-sm);
    background: #FAFAFA;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s ease;
}

.tier-row:last-child {
    border-bottom: none;
}

.tier-row--active {
    background: rgba(0, 40, 120, 0.05);
}

.tier-row--best {
    background: rgba(25, 137, 0, 0.07);
    border-top: 1.5px solid rgba(25, 137, 0, 0.25);
}

.tier-qty {
    font-weight: 700;
    color: var(--text);
    min-width: 70px;
}

.tier-save {
    flex: 1;
    font-weight: 700;
    color: #002F87;
    text-align: center;
}

.tier-row--best .tier-save {
    color: #198900;
}

.tier-price {
    font-weight: 800;
    color: var(--text);
    text-align: right;
    white-space: nowrap;
}

.tier-row--best .tier-price {
    color: #198900;
}


.result-price-line {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.result-code {
    color: var(--text);
    font-weight: 800;
    letter-spacing: 0.04em;
}

.result-free-price {
    font-size: 22px;
    font-weight: 800;
    color: #198900;
    line-height: 1;
    display: inline-block;
}

.result-shipping-label {
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--danger);
}

/* CTA Buttons — green */
.btn-claim {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    width: 100%;
    padding: 16px var(--sp-6);
    background: linear-gradient(135deg, #198900 0%, #147000 80%);
    color: #FFFFFF;
    font-size: var(--fs-base);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 14px;
    margin-top: 20px;
    border: 0;
    cursor: pointer;
    transition: filter 0.18s ease, transform 0.12s ease;
    box-shadow: 0 4px 14px rgba(25, 137, 0, 0.25);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.btn-claim::after {
    content: '';
    position: absolute;
    top: -80%;
    left: -200%;
    width: 150%;
    height: 500%;
    opacity: 0;
    transform: rotate(-10deg);
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    animation: btn-shine 2.5s ease-in-out infinite;
}

.btn-claim:hover {
    filter: brightness(1.06);
}

.btn-claim:active {
    transform: translateY(1px);
}

.btn-claim:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* ─── COMMENTS ─── */
.comments-wrap {
    max-width: 920px;
    margin: 0 auto;
    padding: 15px 0 var(--sp-16);
}

/* ─── RATING DASHBOARD ─── */
.rating-dashboard {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.8fr;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 4px solid #002F87;
    border-radius: var(--r-xl);
    box-shadow: 0 10px 30px rgba(0, 47, 135, 0.06);
    padding: 24px;
    margin-bottom: var(--sp-6);
    overflow: hidden;
}

.dash-col {
    padding: 0 20px;
    border-right: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.dash-col:last-child {
    border-right: none;
    padding-right: 0;
}

.dash-col:first-child {
    padding-left: 0;
}

/* Summary Column */
.dash-summary {
    align-items: center;
    text-align: center;
}

.dash-rating-num {
    font-size: 52px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.02em;
}

.dash-rating-stars {
    color: #FFB020;
    font-size: 19px;
    margin: 8px 0 4px;
    letter-spacing: -0.5px;
}

.dash-rating-count {
    font-size: 12px;
    color: var(--text-tertiary);
    font-weight: 600;
}

/* Breakdown & Feature Bars */
.breakdown-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.breakdown-row:last-child {
    margin-bottom: 0;
}

.row-label {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--text-secondary);
    min-width: 24px;
    text-align: right;
}

.bar-bg {
    flex-grow: 1;
    height: 8px;
    background: #EDF2F7;
    border-radius: 99px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    background: #002F87;
    border-radius: 99px;
}

.row-count {
    font-size: 11.5px;
    color: var(--text-tertiary);
    min-width: 32px;
    text-align: left;
    font-weight: 500;
}

/* Recommendation Column */
.recommend-title {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.feature-row {
    margin-bottom: 8px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-label {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-tertiary);
    margin-bottom: 3px;
}

/* Action Column */
.dash-action {
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
    border-radius: 12px;
    padding: 16px 12px;
}

.dash-action:hover {
    background: #F8FAFC;
    transform: scale(1.02);
}

.dash-action:active {
    transform: scale(0.98);
}

.action-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.action-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.action-icon {
    font-size: 26px;
    color: #4A5568;
    line-height: 1;
    transition: color 0.2s ease;
}

.dash-action:hover .action-icon {
    color: #002F87;
}

.section-heading {
    font-family: var(--font-accent);
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
    letter-spacing: -0.01em;
}

.cmmtform {
    padding: var(--sp-6);
    margin-bottom: var(--sp-8);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-card);
}

.form-title {
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 14px;
}

.form-title i {
    color: var(--accent);
    margin-right: 6px;
}

.cmmtform textarea {
    width: 100%;
    padding: 14px;
    background: var(--bg);
    border: 1px solid var(--border-strong);
    border-radius: var(--r-sm);
    font-size: var(--fs-sm);
    color: var(--text);
    resize: vertical;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cmmtform textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-light);
}

.cmmtform textarea::placeholder {
    color: var(--text-tertiary);
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--sp-3);
}

.upload-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--fs-sm);
    padding: 12px 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.2s ease;
}

.upload-trigger:hover {
    color: var(--accent);
}

.btn-post {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px var(--sp-5);
    background: var(--accent);
    color: var(--text-on-accent);
    font-size: var(--fs-sm);
    font-weight: 600;
    border-radius: var(--r-full);
    border: 0;
    cursor: pointer;
    transition: background 0.18s ease;
}

.btn-post:hover {
    background: var(--accent-hover);
}

.comments-list {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    margin-bottom: var(--sp-8);
}

.cmmtdiv {
    padding: var(--sp-6);
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
    box-shadow: none;
    opacity: 0;
    animation: reveal-up 0.24s var(--ease-out) both;
    transition: background-color 0.2s ease;
}

.cmmtdiv:last-child {
    border-bottom: 0;
}

.cmmtdiv:hover {
    background-color: #F8FAFC;
}

.cmmtdiv:nth-child(1) {
    animation-delay: 0s;
}

.cmmtdiv:nth-child(2) {
    animation-delay: 0.08s;
}

.cmmtdiv:nth-child(3) {
    animation-delay: 0.16s;
}

.cmmtdiv:nth-child(4) {
    animation-delay: 0.24s;
}

.cmmtdiv:nth-child(5) {
    animation-delay: 0.32s;
}

.cmmtdiv:nth-child(6) {
    animation-delay: 0.40s;
}

.cmmtdiv:nth-child(7) {
    animation-delay: 0.48s;
}

.cmmt-header-row {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    margin-bottom: 10px;
}

.cmmt-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--border);
}

.cmmt-avatar-anon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cmmt-header-info {
    flex: 1;
    min-width: 0;
}

.cmmt-name-row {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    flex-wrap: wrap;
}

.cmmt-name {
    font-weight: 600;
    font-size: var(--fs-sm);
    color: var(--text);
}

.cmmt-winner-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #00B890;
}

.cmmt-winner-badge img {
    width: 16px;
    height: 16px;
    display: block;
}

.cmmt-stars {
    display: flex;
    gap: 2px;
    margin-top: 4px;
}

.cmmt-stars img {
    height: 14px;
    width: auto;
    display: block;
}

.cmmt-city {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--text-tertiary);
    margin-top: 1px;
}

.cmmt-city img {
    display: block;
    border-radius: 1px;
}

.cmmt-city i {
    font-size: 10px;
    margin-right: 2px;
}

.cmmt-date-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    margin-left: auto;
    flex-shrink: 0;
}

.cmmt-date {
    font-size: var(--fs-xs);
    color: var(--text-tertiary);
}

.cmmt-text {
    font-size: var(--fs-base);
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.comment-evidence {
    margin-bottom: 10px;
}

.comment-evidence img {
    max-width: 160px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.cmmt-footer {
    display: flex;
    align-items: center;
}

.cmmt-likes {
    font-size: var(--fs-sm);
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.cmmt-likes i {
    color: #E86B6B;
    font-size: 12px;
}

.cmmt-dislikes {
    font-size: var(--fs-sm);
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: var(--sp-3);
}

.cmmt-dislikes i {
    color: var(--text-tertiary);
    font-size: 12px;
}

/* ─── FOOTER ─── */
.site-footer {
    background: #221C38;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--sp-12) var(--sp-6);
    text-align: center;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: var(--sp-4);
    margin-bottom: var(--sp-6);
}

.footer-badges img {
    width: 48px;
    height: 48px;
    border-radius: var(--r-sm);
    opacity: 0.7;
}

.footer-copy {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--sp-2);
}

.footer-disclaimer {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    max-width: 640px;
    margin: 0 auto var(--sp-4);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--sp-6);
}

.footer-link {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    padding: 10px 8px;
    display: inline-block;
    transition: color 0.2s ease;
    border: 0;
    background: transparent;
    font-family: inherit;
}

.footer-link:hover {
    color: #fff;
}

.footer-link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ─── POPUP AND MODAL ─── */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: var(--sp-6);
    animation: fade-in 0.25s var(--ease) both;
}

.popup-content {
    background: var(--white);
    border-radius: 24px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: scale-in-soft 0.35s var(--ease-spring) both;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.popup-content::-webkit-scrollbar {
    width: 6px;
}

.popup-content::-webkit-scrollbar-track {
    background: transparent;
}

.popup-content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 99px;
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #FFFFFF;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s ease, color 0.2s ease;
    border: 0;
    background: rgba(255, 255, 255, 0.2);
    font-family: inherit;
    z-index: 2;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.popup-check-icon {
    width: 52px;
    height: 52px;
    background: rgba(0, 0, 0, 0.08);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 22px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.popup-header {
    background: linear-gradient(135deg, #002F87 0%, #003DA5 100%);
    padding: 24px 28px;
    text-align: left;
    position: relative;
}

.popup-logo {
    height: 36px;
    margin: 0;
    display: block;
    filter: brightness(0) invert(1);
}

.popup-header-title {
    font-family: var(--font-accent);
    font-size: 19px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    margin: 0;
}

.popup-header-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
    position: relative;
    z-index: 1;
}

.popup-code-block {
    margin: 18px var(--sp-6) 0;
    background: var(--accent-50);
    border: 1.5px dashed var(--accent);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.popup-code-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.popup-code-value {
    font-size: 22px;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: 0.05em;
}

.popup-code-status {
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.popup-body {
    padding: var(--sp-6) var(--sp-8) var(--sp-8);
}

.popup-instruction {
    font-family: var(--font-accent);
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    text-align: left;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.popup-steps-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    margin-top: 4px;
}

.popup-steps {
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin-bottom: var(--sp-5);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popup-step-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: var(--bg);
    border-radius: 14px;
    border: none;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease;
}

.popup-step-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #002F87;
    color: #FFFFFF;
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.popup-step-text {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}

.popup-btn {
    background: linear-gradient(135deg, #198900 0%, #147000 100%);
    box-shadow: 0 4px 14px rgba(25, 137, 0, 0.3);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    margin-top: 16px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.popup-btn::after {
    content: '';
    position: absolute;
    top: -80%;
    left: -200%;
    width: 150%;
    height: 500%;
    opacity: 0;
    transform: rotate(-10deg);
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    animation: btn-shine 2.5s ease-in-out infinite;
}

.popup-btn:hover {
    filter: brightness(1.1);
}

.popup-urgency-line {
    text-align: center;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.popup-urgency-line i {
    color: var(--danger);
    font-size: 11px;
}

.popup-footer-note {
    font-size: var(--fs-xs);
    color: var(--text-tertiary);
    text-align: center;
    margin-top: var(--sp-3);
    margin-bottom: 0;
    font-style: italic;
}

.popup-btn:focus-visible {
    outline: 2px solid #198900;
}

/* ─── LEGAL MODALS ─── */
.legal-content {
    max-width: 560px;
}

.legal-content .popup-close {
    color: var(--text-secondary);
    background: var(--bg-alt);
}

.legal-content .popup-close:hover {
    background: var(--border-strong);
    color: var(--text);
}

.legal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-6) var(--sp-8);
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}

.legal-header h2 {
    font-family: var(--font-accent);
    font-size: var(--fs-2xl);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.legal-body {
    padding: var(--sp-8);
    font-size: var(--fs-sm);
    line-height: 1.7;
    color: var(--text-secondary);
}

.legal-body b {
    color: var(--text);
}

.legal-body ol {
    padding-left: 20px;
    margin-top: var(--sp-4);
}

.legal-body li {
    margin-bottom: var(--sp-4);
}

.legal-body ul {
    padding-left: 20px;
    margin-top: var(--sp-2);
}

.legal-date {
    font-size: var(--fs-xs);
    color: var(--text-tertiary);
    margin-bottom: var(--sp-4);
}

/* ─── ANIMATIONS ─── */
@keyframes live-pulse {
    0% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 40, 120, 0.45);
        transform: scale(1);
    }

    70% {
        opacity: 0.55;
        box-shadow: 0 0 0 8px rgba(0, 40, 120, 0);
        transform: scale(1.18);
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 40, 120, 0);
        transform: scale(1);
    }
}

@keyframes price-pulse {
    0% {
        transform: scale(1);
    }

    20% {
        transform: scale(1.08);
    }

    40% {
        transform: scale(0.98);
    }

    60% {
        transform: scale(1.05);
    }

    80% {
        transform: scale(0.99);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes scale-in {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes scale-in-soft {
    0% {
        transform: scale(0.92);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes flash-success {
    0% {
        background: #fff;
        box-shadow: var(--shadow-card);
    }

    30% {
        background: #fff;
        box-shadow: 0 0 0 4px var(--accent-light), var(--shadow-card);
    }

    100% {
        background: #fff;
        box-shadow: var(--shadow-card);
    }
}

@keyframes reveal-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes btn-shine {
    10% {
        opacity: 1;
        top: -30%;
        left: -200%;
    }

    100% {
        opacity: 0;
        top: -30%;
        left: 100%;
    }
}

/* ─── LIVE TOAST NOTIFICATIONS ─── */
.live-toast-container {
    position: fixed;
    bottom: 72px;
    left: 24px;
    z-index: 999;
    pointer-events: none;
    max-width: 360px;
    width: calc(100% - 48px);
}

.live-toast {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 12px 16px;
    margin-top: 10px;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.live-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-avatar {
    width: 38px;
    height: 38px;
    background: rgba(0, 47, 135, 0.08);
    color: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    object-fit: cover;
}

.toast-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.toast-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
}

.toast-text {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.3;
}

@media (max-width: 480px) {
    .live-toast-container {
        left: 12px;
        right: 12px;
        width: auto;
        bottom: 64px;
    }
}

/* ─── FIXED BOTTOM BAR ─── */
.fixed-bottom-bar {
    background: #002F87;
}

/* ─── RESPONSIVE 768px ─── */
@media (max-width: 768px) {
    .rating-dashboard {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .dash-col {
        border-right: none;
        padding: 0;
        height: auto;
        border-bottom: 1px solid var(--border-light);
        padding-bottom: 15px;
        margin: 0;
    }

    .dash-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .hero {
        padding: 24px 24px 28px;
    }

    .hero-media {
        padding: 8px;
        margin-bottom: 16px;
    }

    .hero-img {
        max-width: 200px;
        margin: 0 auto;
    }

    .hero-body {
        align-items: center;
        padding: 0;
        width: 100%;
    }

    .hero-cta-row {
        width: 100%;
        align-items: center;
    }

    .live-code-card {
        width: auto;
    }

    .btn-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: var(--sp-2);
        padding: 16px 30px;
        background: #002F87;
        color: #FFFFFF;
        font-size: 19px;
        font-weight: 800;
        letter-spacing: 0;
        border-radius: 14px;
        border: 0;
        cursor: pointer;
        transition: filter 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
        width: fit-content;
        white-space: nowrap;
        box-shadow: 0 4px 14px rgba(0, 40, 120, 0.25);
    }

    .result-card {
        grid-template-columns: 1fr;
    }

    .result-details {
        max-height: none;
    }

    .result-card-img-col {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 20px 16px 10px 16px;
        min-height: auto;
    }

    .result-card-img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: contain;
        object-position: center;
    }

    .answers-grid {
        grid-template-columns: 1fr;
    }

    .site-header {
        padding: 12px var(--sp-4);
    }

    .site-logo {
        height: 40px;
    }

    .notice-bar {
        padding: 6px var(--sp-4);
        font-size: 11px;
    }

    .notice-full {
        display: none;
    }

    .notice-short {
        display: inline;
    }

    .survey-card {
        padding: var(--sp-5);
        border-radius: var(--r-xl);
    }

    .container {
        padding-inline: var(--sp-5);
    }
}

/* ─── RESPONSIVE 480px ─── */
@media (max-width: 480px) {
    .rating-dashboard {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 16px;
    }

    .dash-col {
        border-right: none !important;
        border-top: none !important;
        padding: 0 0 16px 0 !important;
        margin: 0 !important;
        border-bottom: 1px solid var(--border-light);
    }

    .dash-col:last-child {
        border-bottom: none;
        padding-bottom: 0 !important;
    }

    .cmmtdiv {
        padding: var(--sp-4);
    }

    .site-header {
        flex-direction: row;
        justify-content: space-between;
        gap: var(--sp-2);
        padding: 12px var(--sp-4);
    }

    .site-logo {
        height: 36px;
    }

    .hero-container-wrapper {
        padding-top: 15px;
    }

    .hero {
        padding: 20px 16px 24px;
        margin-top: 0;
        gap: 0;
    }

    .hero-brand-logo {
        height: 44px !important;
    }

    .hero-media {
        padding: 0;
        margin-bottom: 12px;
    }

    .hero-body {
        padding: 0;
        width: 100%;
    }

    .btn-primary--hero {
        width: 100%;
        font-size: 15px;
        padding: 12px 20px;
    }

    .hero-img {
        max-width: 130px;
    }

    .hero-title {
        font-size: 22px;
        gap: 0;
    }

    .hero-eyebrow {
        font-size: 10px;
        margin-bottom: 14px;
    }

    .hero-product-name {
        font-size: 22px;
        white-space: nowrap;
        letter-spacing: -0.02em;
    }

    .hero-desc {
        font-size: 13.5px;
        line-height: 1.4;
        margin-bottom: 4px;
    }

    .hero-desc--secondary {
        font-size: 13.5px;
        line-height: 1.4;
    }

    .trust-badge-icon {
        width: 18px;
        height: 18px;
    }

    .trust-badge-text {
        font-size: 8.5px;
    }

    .survey-section {
        padding: 15px 0;
    }

    .survey-card {
        padding: var(--sp-4);
    }

    .container {
        padding-inline: var(--sp-4);
    }

    .verification-section {
        padding: 15px 0;
    }

    .verif-inner {
        padding: var(--sp-8) var(--sp-4);
    }

    .verif-step-label {
        font-size: var(--fs-md);
    }

    .results-section {
        padding: 15px 0 0;
    }

    .result-card {
        padding: var(--sp-4);
        gap: var(--sp-4);
        max-width: 396px;
        margin-inline: auto;
    }

    .result-card-img-col {
        padding: var(--sp-4) var(--sp-2);
        background: transparent;
        border-radius: var(--r-md);
    }

    .result-details {
        padding: 12px 16px;
    }

    .result-pricing {
        gap: 8px;
    }

    .result-code-pill {
        padding: 5px 8px;
        font-size: 11px;
        line-height: 1.2;
    }

    .result-your-price-label,
    .old-price-label {
        white-space: nowrap;
    }

    .result-your-price-row {
        gap: 6px;
    }

    .result-old-price-row {
        flex-wrap: wrap;
        gap: 6px;
    }

    .result-price-line {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        padding: 8px 0;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        margin: 2px 0;
    }

    .result-price-line .result-label {
        font-size: 11px;
        white-space: nowrap;
        color: var(--text-tertiary);
    }

    .result-code {
        font-size: 14px;
        font-weight: 900;
        white-space: nowrap;
        margin-left: auto;
    }

    .result-free-price {
        font-size: 22px;
        font-weight: 800;
        color: #198900;
        line-height: 1;
        display: inline-block;
    }

    .result-shipping-label {
        font-size: 11px;
        margin-top: -2px;
        font-weight: 600;
    }

    .btn-claim {
        padding: 14px var(--sp-4);
        font-size: 15px;
    }

    .btn-claim i {
        display: none;
    }

    .result-product {
        padding-inline: 0;
    }

    .result-badge-wrap {
        padding-inline: var(--sp-4);
        max-width: 396px;
        margin-inline: auto;
    }

    .cmmt-header-row {
        align-items: flex-start;
        position: relative;
    }

    .cmmt-header-info {
        flex: 1;
    }

    .cmmt-name-row {
        flex-direction: row;
        align-items: center;
        gap: 6px;
        margin-bottom: 2px;
    }

    .cmmt-city {
        display: flex;
        align-items: center;
        gap: 4px;
        margin-top: 0;
    }

    .cmmt-stars {
        margin-top: 2px;
    }

    .cmmt-date {
        position: static;
        font-size: 10px;
    }

    .cmmt-winner-badge {
        font-size: 10px;
        padding: 1px 6px;
    }

    .question-text {
        font-size: 18px;
    }

    .comments-wrap {
        padding: 15px var(--sp-4) var(--sp-12);
    }

    .cmmtform {
        padding: var(--sp-3) var(--sp-4);
        margin-top: 10px;
    }

    .cmmtform textarea {
        height: 80px;
    }

    .form-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .site-footer {
        padding: var(--sp-10) var(--sp-4);
    }

    .popup-content {
        border-radius: 20px;
        margin: var(--sp-3);
    }

    .popup-header {
        background: linear-gradient(135deg, #002F87 0%, #003DA5 100%);
        padding: 24px 28px;
        text-align: left;
    }

    .popup-code-block {
        margin: 14px var(--sp-4) 0;
    }

    .popup-body {
        padding: 14px var(--sp-4) var(--sp-5);
    }

    .popup-btn {
        font-size: 14px;
        padding: 14px 16px;
        white-space: nowrap;
    }
}

/* ─── RESPONSIVE 360px ─── */
@media (max-width: 360px) {
    .hero-discount-tag {
        font-size: 20px;
        padding: 6px 14px;
    }

    .hero-product-name {
        font-size: 15px;
    }

    .popup-content {
        margin: var(--sp-2);
    }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ─── BRITISH GAS OVERRIDES ─── */
.notice-bar {
    background: #002F87;
    color: #FFFFFF;
}

.notice-bar i {
    color: rgba(255, 255, 255, 0.85);
}

.card {
    border-top: 4px solid #002F87;
}

.btn-primary {
    background: linear-gradient(135deg, #002F87 0%, #003DA5 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(0, 47, 135, 0.3);
}

#start-survey-btn {
    background: linear-gradient(135deg, #002F87 0%, #003DA5 100%) !important;
    color: #FFFFFF !important;
    border: 0 !important;
    box-shadow: 0 4px 14px rgba(0, 47, 135, 0.35) !important;
    font-weight: 800;
}

#start-survey-btn:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.live-scarcity-pill {
    background: rgba(230, 0, 0, 0.06);
    border: 1px solid rgba(230, 0, 0, 0.2);
    color: #e60000;
}

.live-dot {
    background: #e60000;
}

.live-dot::after {
    background: #e60000;
}

.answer-btn {
    background: #002F87;
    color: #FFFFFF;
    border: 2px solid #002F87;
}

.answer-btn:hover,
.answer-btn:focus-visible {
    background: #FFFFFF !important;
    color: #002F87 !important;
    border-color: #002F87 !important;
    box-shadow: 0 4px 14px rgba(0, 47, 135, 0.2);
}

.answer-btn--selected {
    background: #FFFFFF !important;
    color: #002F87 !important;
    border-color: #002F87 !important;
    box-shadow: 0 4px 14px rgba(0, 47, 135, 0.2) !important;
}

.answer-btn-letter {
    background: #FFFFFF;
    color: #002F87;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.answer-btn:hover .answer-btn-letter {
    background: #002F87;
    color: #FFFFFF;
}

.answer-btn--selected .answer-btn-letter {
    background: #002F87 !important;
    color: #FFFFFF !important;
}

.answer-btn-text {
    color: #FFFFFF;
    font-weight: 700;
}

.answer-btn:hover .answer-btn-text {
    color: #002F87;
}

.answer-btn--selected .answer-btn-text {
    color: #002F87 !important;
}

.progress-fill {
    background: #002F87;
}

.verif-icon-ring {
    background: rgba(0, 47, 135, 0.08);
    border: 3px solid #002F87;
    color: #002F87;
}

.verif-icon-ring--success {
    background: rgba(25, 137, 0, 0.08);
    border-color: #198900;
    color: #198900;
}

.verif-bar-fill {
    background: #002F87;
}

.verif-percent {
    color: #002F87;
}

.verif-step-item.active {
    background: rgba(0, 47, 135, 0.06);
    border-color: rgba(0, 47, 135, 0.2);
}

.verif-step-item.active .verif-step-icon {
    color: #002F87;
}

.verif-step-item.done {
    background: rgba(25, 137, 0, 0.06);
    border-color: rgba(25, 137, 0, 0.2);
}

.verif-step-item.done .verif-step-icon {
    color: #198900;
}

.verif-step-item.done .verif-step-text {
    color: #198900;
}

@keyframes verif-ring-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 47, 135, 0.15);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(0, 47, 135, 0);
    }
}

.btn-claim {
    background: linear-gradient(135deg, #198900 0%, #147000 80%);
    box-shadow: 0 4px 14px rgba(25, 137, 0, 0.25);
}

.popup-btn {
    background: linear-gradient(135deg, #198900 0%, #147000 100%);
    box-shadow: 0 4px 14px rgba(25, 137, 0, 0.3);
}

.result-card {
    border: 2px solid #002F87;
    box-shadow: 0 15px 40px rgba(0, 47, 135, 0.08);
}

/* Override rules for image/video column to support transparent background and flex layouts */
.result-card-img-col {
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px 16px 20px 16px;
}

@media (max-width: 480px) {
    .result-card-img-col {
        background: transparent;
        padding: 16px 12px;
    }
}

.result-details {
    margin-top: 20px;
}

.old-price-val {
    color: #e60000;
    text-decoration: line-through;
    font-weight: 600;
}

.result-code-pill {
    background: rgba(230, 0, 0, 0.08);
    color: #e60000;
    border: 1.5px solid #e60000;
}

.result-badge-wrap {
    border-top: 4px solid #002F87;
    box-shadow: 0 10px 30px rgba(0, 47, 135, 0.06);
}

.rating-dashboard {
    border-top: 4px solid #002F87;
    box-shadow: 0 10px 30px rgba(0, 47, 135, 0.06);
}

.bar-fill {
    background: #002F87;
}

.hero-media-inner {
    background: radial-gradient(circle, rgba(0, 47, 135, 0.07) 0%, rgba(255, 255, 255, 0) 0%);
}

.popup-header {
    background: linear-gradient(135deg, #002F87 0%, #003DA5 100%);
}

.popup-close {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.2);
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

.popup-step-num {
    background: #002F87;
    color: #FFFFFF;
}

@media (max-width: 480px) {
    .popup-header {
        background: linear-gradient(135deg, #002F87 0%, #003DA5 100%);
    }
}

.hero {
    box-shadow: 0 10px 30px rgba(0, 47, 135, 0.06);
}

.verif-inner {
    box-shadow: 0 10px 30px rgba(0, 47, 135, 0.06);
    border-top: 4px solid #002F87;
}

.hero-discount-tag {
    background: #002F87;
}

.toast-title {
    color: #002F87;
}

.toast-avatar {
    background: rgba(0, 47, 135, 0.08);
}

.discount-badge-blink {
    background: #002F87;
}

.fixed-bottom-bar {
    background: #002F87;
}

.site-footer {
    background: #001440;
}

.result-tier-table {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.tier-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 9px 14px;
    font-size: var(--fs-sm);
    background: #FAFAFA;
    border-bottom: 1px solid var(--border);
}

.tier-row:last-child {
    border-bottom: none;
}

.tier-row--active {
    background: rgba(0, 47, 135, 0.05);
}

.tier-row--best {
    background: rgba(25, 137, 0, 0.07);
    border-top: 1.5px solid rgba(25, 137, 0, 0.25);
}

.tier-qty {
    font-weight: 700;
    color: var(--text);
    min-width: 70px;
}

.tier-save {
    flex: 1;
    font-weight: 700;
    color: #002F87;
    text-align: center;
}

.tier-row--best .tier-save {
    color: #198900;
}

.tier-price {
    font-weight: 800;
    color: var(--text);
    text-align: right;
    white-space: nowrap;
}

.tier-row--best .tier-price {
    color: #198900;
}

/* ─── RING OVERRIDES & PLAN STEP 18 ─── */
.notice-bar {
    background: #0F6FAB;
    color: #FFFFFF;
}

.notice-bar i {
    color: rgba(255, 255, 255, 0.85);
}

.card {
    border-top: 4px solid #1998D5;
}

.btn-primary {
    background: linear-gradient(135deg, #0F6FAB 0%, #1998D5 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(15, 111, 171, 0.3);
}

#start-survey-btn {
    background: linear-gradient(135deg, #0F6FAB 0%, #1998D5 100%) !important;
    color: #FFFFFF !important;
    border: 0 !important;
    box-shadow: 0 4px 14px rgba(15, 111, 171, 0.35) !important;
    font-weight: 800;
}

#start-survey-btn:hover {
    background: linear-gradient(135deg, #1998D5 0%, #0F6FAB 100%) !important;
    color: #FFFFFF !important;
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.hero-trust-badges {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 24px;
    width: 100%;
    max-width: 520px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.trust-badge-icon {
    width: 15px;
    height: 15px;
    object-fit: contain;
}

.trust-badge-text {
    font-size: 9px;
    font-weight: 400;
    line-height: 1.35;
    color: #0D222D;
    text-transform: uppercase;
}

/* Mobile 2×2 grid at ≤576px */
@media (max-width: 576px) {
    .hero-trust-badges {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 8px;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .trust-badge {
        flex: none;
    }
}

.live-scarcity-pill {
    background: rgba(230, 0, 0, 0.06);
    border: 1px solid rgba(230, 0, 0, 0.2);
    color: #e60000;
}

.live-dot {
    background: #e60000;
}

.live-dot::after {
    background: #e60000;
}

.answer-btn {
    background: #0F6FAB;
    color: #FFFFFF;
    border: 2px solid #0F6FAB;
}

.answer-btn:hover,
.answer-btn:focus-visible {
    background: #1998D5 !important;
    color: #FFFFFF !important;
    border-color: #1998D5 !important;
    box-shadow: 0 4px 14px rgba(15, 111, 171, 0.2);
}

.answer-btn--selected {
    background: #1998D5 !important;
    color: #FFFFFF !important;
    border-color: #0F6FAB !important;
    box-shadow: 0 4px 14px rgba(15, 111, 171, 0.2) !important;
}

.answer-btn-letter {
    background: #FFFFFF;
    color: #0F6FAB;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.answer-btn:hover .answer-btn-letter {
    background: rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
}

.answer-btn--selected .answer-btn-letter {
    background: rgba(255, 255, 255, 0.25) !important;
    color: #FFFFFF !important;
}

.answer-btn-text {
    color: #FFFFFF;
    font-weight: 700;
}

.answer-btn:hover .answer-btn-text {
    color: #36302A;
}

.answer-btn--selected .answer-btn-text {
    color: #36302A !important;
}

.progress-fill {
    background: #0F6FAB;
}

.verif-icon-ring {
    background: rgba(15, 111, 171, 0.08);
    border: 3px solid #0F6FAB;
    color: #0F6FAB;
}

.verif-icon-ring--success {
    background: rgba(25, 137, 0, 0.08);
    border-color: #198900;
    color: #198900;
}

.verif-bar-fill {
    background: #0F6FAB;
}

.verif-percent {
    color: #0F6FAB;
}

.verif-step-item.active {
    background: rgba(15, 111, 171, 0.06);
    border-color: rgba(15, 111, 171, 0.2);
}

.verif-step-item.active .verif-step-icon {
    color: #0F6FAB;
}

.verif-step-item.done {
    background: rgba(25, 137, 0, 0.06);
    border-color: rgba(25, 137, 0, 0.2);
}

.verif-step-item.done .verif-step-icon {
    color: #198900;
}

.verif-step-item.done .verif-step-text {
    color: #198900;
}

@keyframes verif-ring-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(15, 111, 171, 0.15);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(15, 111, 171, 0);
    }
}

.btn-claim {
    background: linear-gradient(135deg, #198900 0%, #147000 80%);
    box-shadow: 0 4px 14px rgba(25, 137, 0, 0.25);
}

.popup-btn {
    background: linear-gradient(135deg, #198900 0%, #147000 100%);
    box-shadow: 0 4px 14px rgba(25, 137, 0, 0.3);
}

.result-card {
    border: 2px solid #0F6FAB;
    box-shadow: 0 15px 40px rgba(15, 111, 171, 0.08);
}

.result-card-img-col {
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px 16px 20px 16px;
    border-right: 1px solid var(--border);
}

@media (max-width: 480px) {
    .result-card-img-col {
        background: transparent;
        padding: 16px 12px;
    }
}

.ref-mobile-text {
    display: none;
}

.ref-desktop-text {
    display: inline;
}

@media (max-width: 480px) {
    .ref-desktop-text {
        display: none;
    }

    .ref-mobile-text {
        display: inline;
        white-space: nowrap;
    }
}

.result-details {
    margin-top: 20px;
}

.old-price-val {
    color: #e60000;
    text-decoration: line-through;
    font-weight: 600;
}

.result-code-pill {
    background: rgba(230, 0, 0, 0.08);
    color: #e60000;
    border: 1.5px solid #e60000;
}

.result-badge-wrap {
    border-top: 4px solid #1998D5;
    box-shadow: 0 10px 30px rgba(15, 111, 171, 0.06);
}

.rating-dashboard {
    border-top: 4px solid #1998D5;
    box-shadow: 0 10px 30px rgba(15, 111, 171, 0.06);
}

.bar-fill {
    background: #0F6FAB;
}

.hero-media-inner {
    background: radial-gradient(circle, rgba(25, 152, 213, 0.09) 0%, rgba(255, 255, 255, 0) 70%);
}

.popup-header {
    background: linear-gradient(135deg, #0F6FAB 0%, #1998D5 100%);
}

.popup-close {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.2);
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

.popup-step-num {
    background: #0F6FAB;
    color: #FFFFFF;
}

@media (max-width: 480px) {
    .popup-header {
        background: linear-gradient(135deg, #0F6FAB 0%, #1998D5 100%);
    }
}

.hero {
    box-shadow: 0 10px 30px rgba(15, 111, 171, 0.06);
}

.verif-inner {
    box-shadow: 0 10px 30px rgba(15, 111, 171, 0.06);
    border-top: 4px solid #1998D5;
}

.hero-discount-tag {
    background: #0F6FAB;
}

.toast-title {
    color: #0F6FAB;
}

.toast-avatar {
    background: rgba(15, 111, 171, 0.08);
}

.discount-badge-blink {
    background: #0F6FAB;
}

.fixed-bottom-bar {
    background: #0F6FAB;
}

.site-footer {
    background: #0F6FAB;
}

.result-tier-table {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.tier-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 9px 14px;
    font-size: var(--fs-sm);
    background: #FAFAFA;
    border-bottom: 1px solid var(--border);
}

.tier-row:last-child {
    border-bottom: none;
}

.tier-row--active {
    background: rgba(15, 111, 171, 0.05);
}

.tier-row--best {
    background: rgba(25, 137, 0, 0.07);
    border-top: 1.5px solid rgba(25, 137, 0, 0.25);
}

.tier-qty {
    font-weight: 700;
    color: var(--text);
    min-width: 70px;
}

.tier-save {
    flex: 1;
    font-weight: 700;
    color: #0F6FAB;
    text-align: center;
}

.tier-row--best .tier-save {
    color: #198900;
}

.tier-price {
    font-weight: 800;
    color: var(--text);
    text-align: right;
    white-space: nowrap;
}

.tier-row--best .tier-price {
    color: #198900;
}

/* ─── MOBILE HERO FORCED OVERRIDES ─── */
@media (max-width: 700px) {
    .hero:not(.hidden) {
        height: auto !important;
        overflow: visible !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 24px 20px 28px !important;
    }

    .hero-header-group {
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }

    .hero-brand-wrap {
        justify-content: center !important;
        margin-bottom: 8px !important;
    }

    .hero-eyebrow {
        text-align: center !important;
        margin-bottom: 14px !important;
        /* Space between eyebrow and floating camera image */
    }

    .hero-media {
        padding: 24px 16px !important;
        margin-bottom: 16px !important;
        border-right: none !important;
        border-radius: var(--r-xl) !important;
        background: #FFF3EE !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .hero-body {
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 90% !important;
    }

    .hero-title {
        align-items: center !important;
        text-align: center !important;
    }

    .hero-cta-row {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        height: auto !important;
    }

    .btn-primary--hero {
        width: 100% !important;
    }

    .hero-trust-badges {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px 10px !important;
        margin-top: 16px !important;
        width: 100% !important;
        max-width: none !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .trust-badge {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        text-align: left !important;
        gap: 6px !important;
    }
}

@media (max-width: 480px) {
    .hero:not(.hidden) {
        padding: 20px 16px 24px !important;
    }

    .hero-eyebrow {
        margin-bottom: 14px !important;
    }

    .hero-img {
        max-width: 230px !important;
    }
}

/* ─── BRAND OVERRIDES: ALLIANZ ─── */
:root {
    --accent: #122B54;
    --accent-hover: #0D1F3E;
    --accent-50: #EEF2FA;
    --accent-800: #060F1E;
    --accent-light: rgba(18, 43, 84, 0.08);
    --accent-medium: rgba(18, 43, 84, 0.15);
    --bg-alt: #EBF0F8;
}

/* Background image support (coordinated with brand colors) */
body::before {
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22) 0%, transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.45) 0%, transparent 55%),
        radial-gradient(rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px) 0 0 / 24px 24px,
        linear-gradient(135deg, #122B54 0%, #242424 100%) !important;
}

.notice-bar {
    background: #122B54 !important;
    color: #FFFFFF;
}

.notice-bar i {
    color: rgba(255, 255, 255, 0.85);
}

.hero-media::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #EEF2FA 0%, #D5E0F0 100%) !important;
    filter: none !important;
    z-index: 0;
    transform: none !important;
}

@media (max-width: 700px) {
    .hero-media {
        background: #EEF2FA !important;
    }
}

.card {
    border-top: 4px solid #122B54 !important;
    box-shadow: 0 10px 30px rgba(18, 43, 84, 0.06);
}

.btn-primary {
    background: linear-gradient(135deg, #122B54 0%, #0D1F3E 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(18, 43, 84, 0.3);
}

#start-survey-btn {
    background: linear-gradient(135deg, #122B54 0%, #0D1F3E 100%) !important;
    color: #FFFFFF !important;
    border: 0 !important;
    box-shadow: 0 4px 14px rgba(18, 43, 84, 0.35) !important;
    font-weight: 800;
}

#start-survey-btn:hover {
    background: linear-gradient(135deg, #1D3F75 0%, #122B54 100%) !important;
    filter: brightness(1.1);
    transform: translateY(-1px);
}

@media (max-width: 480px) {
    .hero-brand-logo {
        height: 30px !important;
    }
}

.hero-trust-badges {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
    width: 100%;
    max-width: 520px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.trust-badge-icon {
    width: 15px;
    height: 15px;
    object-fit: contain;
}

.trust-badge-text {
    font-size: 9px;
    font-weight: 600;
    line-height: 1.35;
    color: #122B54;
    text-transform: uppercase;
}

@media (max-width: 576px) {
    .hero-trust-badges {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 8px;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .trust-badge {
        flex: none;
    }
}

.live-scarcity-pill {
    background: rgba(230, 0, 0, 0.06);
    border: 1px solid rgba(230, 0, 0, 0.2);
    color: #e60000;
}

.live-dot {
    background: #e60000;
}

.live-dot::after {
    background: #e60000;
}

.answer-btn {
    background: #122B54;
    color: #FFFFFF;
    border: 2px solid #122B54;
}

.answer-btn:hover,
.answer-btn:focus-visible {
    background: #FFFFFF !important;
    color: #122B54 !important;
    border-color: #122B54 !important;
    box-shadow: 0 4px 14px rgba(18, 43, 84, 0.2);
}

.answer-btn--selected {
    background: #FFFFFF !important;
    color: #122B54 !important;
    border-color: #122B54 !important;
    box-shadow: 0 4px 14px rgba(18, 43, 84, 0.2) !important;
}

.answer-btn-letter {
    background: #FFFFFF;
    color: #122B54;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.answer-btn:hover .answer-btn-letter {
    background: #122B54;
    color: #FFFFFF;
}

.answer-btn--selected .answer-btn-letter {
    background: #122B54 !important;
    color: #FFFFFF !important;
}

.answer-btn-text {
    color: #FFFFFF;
    font-weight: 700;
}

.answer-btn:hover .answer-btn-text {
    color: #122B54;
}

.answer-btn--selected .answer-btn-text {
    color: #122B54 !important;
}

.progress-fill {
    background: #122B54;
}

.verif-icon-ring {
    background: rgba(18, 43, 84, 0.08);
    border: 3px solid #122B54;
    color: #122B54;
}

.verif-icon-ring--success {
    background: rgba(25, 137, 0, 0.08);
    border-color: #198900;
    color: #198900;
}

.verif-bar-fill {
    background: #122B54;
}

.verif-percent {
    color: #122B54;
}

.verif-step-item.active {
    background: rgba(18, 43, 84, 0.06);
    border-color: rgba(18, 43, 84, 0.2);
}

.verif-step-item.active .verif-step-icon {
    color: #122B54;
}

.verif-step-item.done {
    background: rgba(25, 137, 0, 0.06);
    border-color: rgba(25, 137, 0, 0.2);
}

.verif-step-item.done .verif-step-icon {
    color: #198900;
}

.verif-step-item.done .verif-step-text {
    color: #198900;
}

@keyframes verif-ring-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(18, 43, 84, 0.15);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(18, 43, 84, 0);
    }
}

.btn-claim {
    background: linear-gradient(135deg, #122B54 0%, #0D1F3E 80%);
    box-shadow: 0 4px 14px rgba(18, 43, 84, 0.25);
    color: #FFFFFF;
}

.btn-claim:hover {
    background: #EEF2FA;
    color: #36302A;
    filter: none;
}

.popup-btn {
    background: linear-gradient(135deg, #122B54 0%, #0D1F3E 100%);
    box-shadow: 0 4px 14px rgba(18, 43, 84, 0.3);
    color: #FFFFFF;
}

.popup-btn:hover {
    background: #EEF2FA;
    color: #36302A;
    filter: none;
}

.popup-btn:focus-visible {
    outline: 2px solid #122B54;
}

.result-card {
    border: 2px solid #122B54;
    box-shadow: 0 15px 40px rgba(18, 43, 84, 0.08);
}

.result-card-img-col {
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px 16px 20px 16px;
}

@media (max-width: 480px) {
    .result-card-img-col {
        background: transparent;
        padding: 16px 12px;
    }
}

.ref-mobile-text {
    display: none;
}

.ref-desktop-text {
    display: inline;
}

@media (max-width: 480px) {
    .ref-desktop-text {
        display: none;
    }

    .ref-mobile-text {
        display: inline;
        white-space: nowrap;
    }
}

.result-details {
    margin-top: 20px;
}

.old-price-val {
    color: #e60000;
    text-decoration: line-through;
    font-weight: 600;
}

.result-code-pill {
    background: rgba(230, 0, 0, 0.08);
    color: #e60000;
    border: 1.5px solid #e60000;
}

.result-badge-wrap {
    border-top: 4px solid #122B54;
    box-shadow: 0 10px 30px rgba(18, 43, 84, 0.06);
}

.rating-dashboard {
    border-top: 4px solid #122B54;
    box-shadow: 0 10px 30px rgba(18, 43, 84, 0.06);
}

.bar-fill {
    background: #122B54;
}

.hero-media-inner {
    background: radial-gradient(circle, rgba(18, 43, 84, 0.07) 0%, rgba(255, 255, 255, 0) 70%);
}

.popup-header {
    background: linear-gradient(135deg, #122B54 0%, #0D1F3E 100%);
}

.popup-logo {
    filter: brightness(0) invert(1);
}

.popup-close {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.2);
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

.popup-step-num {
    background: #122B54;
    color: #FFFFFF;
}

@media (max-width: 480px) {
    .popup-header {
        background: linear-gradient(135deg, #122B54 0%, #0D1F3E 100%);
    }
}

.toast-title {
    color: #122B54;
}

.toast-avatar {
    background: rgba(18, 43, 84, 0.08);
}

.discount-badge-blink {
    background: #122B54;
}

.fixed-bottom-bar {
    background: #122B54;
}

.site-footer {
    background: #122B54;
}

.tier-save {
    color: #122B54;
}

.tier-row--active {
    background: rgba(18, 43, 84, 0.05);
}

.tier-row--best {
    background: rgba(25, 137, 0, 0.07);
    border-top: 1.5px solid rgba(25, 137, 0, 0.25);
}

.tier-qty {
    font-weight: 700;
    color: var(--text);
    min-width: 70px;
}

.tier-save {
    flex: 1;
    font-weight: 700;
    color: #122B54;
    text-align: center;
}

.tier-row--best .tier-save {
    color: #198900;
}

.tier-price {
    font-weight: 800;
    color: var(--text);
    text-align: right;
    white-space: nowrap;
}

.tier-row--best .tier-price {
    color: #198900;
}

@media (max-width: 480px) {
    .ref-rating-row {
        font-size: 11px !important;
        gap: 6px !important;
    }
    .ref-rating-row img {
        height: 10px !important;
    }
}